Appendix F — Milestone 1

WNBA Performance Analysis

Author

Cate Stacy and Karyna Steele

Project Description

We are analyzing WNBA data from the 2025 season. We plan on exploring factors that contribute to the success of teams and individuals. We have access to play-by-play, team box score, and player box score data.

Research Questions

1) What influences playing time for a WNBA player?

2) What are the characteristics of winning teams? Do these characteristics align with the outcome of the championships?

Inspiration

We were interested in pursuing a project surrounding sports given that it has many statistics. In recent years, women’s basketball has experienced a rapid rise in popularity. This has coincided with the growth of the WNBA, making it an exciting topic to analyze.

Data

Code
library(wehoop)
library(tidyverse)

wnba_pbp <- wehoop::load_wnba_pbp()
wnba_team_box <- wehoop::load_wnba_team_box()
wnba_player_box <- wehoop::load_wnba_player_box()

Implamentation Plan

  1. Clean the data sets (together)
  1. Identify NA values and filter variables we need to answer our research questions
  1. EDA (individually) a.Make visualizations and identify variables that could be valuable for our analysis
  1. Summarize finding and narrow down research questions
  1. Research (individually)
  1. Conduct research about the data (ex. How it was collected)
  2. Do background research on topic
  1. Create preliminary findings presentation (together)
  1. Collaborate on presentation and present to classmates
  1. Create data story and present to class (together)
  1. Ensure that report is clean (hide warnings, ensure there are no long outputs)
  2. Revise according to feedback
  1. Clean up and organize GitHub repository (together)
  1. Add README file
  1. Create presentation slides and video (together)
  2. Evaluation and reflection (individually)